home *** CD-ROM | disk | FTP | other *** search
- #ifndef INCLUDE_LIBS_STRUCT
- extern
- #endif
- struct
- {
- char *name;
- ULONG version;
- APTR base;
- } libs[]
- #ifdef INCLUDE_LIBS_STRUCT
- =
- {
- {"exec.library", 37, 0},
- {"dos.library", 37, 0},
- {"gadtools.library", 37, 0},
- {"intuition.library", 37, 0},
- {"iffparse.library", 37, 0},
- {"rexxsyslib.library", 36, 0},
- {0, 0, 0},
- }
- #endif
- ;
-
- #define ExecBase libs[0].base
- #define DOSBase libs[1].base
- #define GadToolsBase libs[2].base
- #define IntuitionBase libs[3].base
- #define IFFParseBase libs[4].base
- #define RexxSysBase libs[5].base
-
- void OpenLibraries (void);
- void CloseLibraries (void);
-